085ca25faeaa076181b60f9863566fd8890bbb37,src/main/java/com/superzanti/serversync/SyncServer.java,SyncServer,SyncServer,#,25
Before Change
allList.addAll(dirContents("./config"));
if (ServerSyncConfig.PUSH_CLIENT_MODS) {
ServerSync.logger.info("Getting ./clientmods contents");
clientList.addAll(dirContents("./clientmods"));
}
return;
}
After Change
}
// ServerSync.logger.info("Getting ./config contents");
/*CLIENT ONLY MODS*/
if (ServerSyncConfig.PUSH_CLIENT_MODS && (tempList = dirContents("./clientmods")) != null) {
clientOnlyMods.addAll(Mod.parseList(tempList));
allMods.addAll(clientOnlyMods);
}